.work-hero-section {
  background: no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.work-hero-section h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.work-hero-section p {
  color: var(--text-light);
  margin: 0 auto 25px auto;
  line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
  .work-hero-section h1 {
    font-size: 1.8rem;
  }

}







/* Visa Services Section */
.visa-services {
  padding: 80px 20px;
  background: var(--text-light);
  text-align: center;
}

.visa-services .container {
  max-width: 1300px;
  margin: 0 auto;
}

.visa-services h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Layout */
.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

/* Left Side Cards */
.visa-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visa-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: var(--text-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.visa-card .icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.visa-card .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make icon white */
}

.visa-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.visa-card p {
  
  color: var(--paragraph-color) !important;
  line-height: 1.6;
  margin: 0;
}

/* Right Side Image */
.visa-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visa-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  
}

/* Responsive */
@media (max-width: 992px) {
  .visa-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .visa-list {
    text-align: left;
  }
  .visa-image {
    margin-top: 40px;
  }
}






/* Visa Steps Section */
.visa-steps {
  padding: 80px 20px;
  background: var(--text-light);
}

.visa-steps .container {
  max-width: 1300px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Step Card */
.step-card {
  background: var(--text-light);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-card .icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-card .icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* make icon white */
}

.step-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.step-card p {
  
  line-height: 1.6;
  color: var(--paragraph-color);
}

/* Responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}












/* === Accordion Section Wrapper === */
.accordion-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Cambria, serif;
}

/* Section Title */
.accordion-container h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}

/* === Accordion Items === */
.accordion-item {
  background: var(--text-light);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: background-color 0.3s ease;
  border: 1px solid #e2e2e2;
}

/* Hide the actual radio buttons */
.accordion-item input[type="radio"] {
  display: none;
}

/* === Accordion Titles === */
.accordion-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, color 0.3s;
}

/* Add "+" icon by default */
.accordion-title::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* === Accordion Content === */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--paragraph-color);
  line-height: 1.6;
  background: var(--text-light);
  transition: max-height 0.4s ease, background 0.3s ease, padding 0.3s ease;
}

/* === When Opened === */
.accordion-item input:checked + .accordion-title {
  background: #f5f7fa; /* ✅ light hash background */
  color: var(--primary-color);
}

/* Change "+" to "–" when opened */
.accordion-item input:checked + .accordion-title::after {
  content: "–";
  color: #218838;
  transform: translateY(-50%) rotate(180deg);
}

/* Show content when checked */
.accordion-item input:checked + .accordion-title + .accordion-content {
  max-height: 200px; /* adjust as needed */
  padding: 15px 20px 20px;
  background: #f5f7fa; /* ✅ same light background as title */
}

/* Hover effects */
.accordion-title:hover {
  background: #eef2f7;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .accordion-container {
    padding: 40px 15px;
  }

  .accordion-title {
    font-size: 16px;
    padding: 15px;
  }

  .accordion-content {
    font-size: 14px;
  }
}

